Conversation
…itor
Requirement:
The /make-task-issue command currently uses an editor-based approach which doesn't work properly in some environments and requires complex editor configuration. Update to use a prompt-based input approach for better reliability and user experience.
Implementation:
- Changed Section 2 from "Editor-based" to "Prompt-based" collection
- Defined type-specific sequential prompts for Context, Requirement, and optional sections
- Added validation rules for required sections with re-prompting behavior
- Removed Write tool from allowed-tools (no longer needed for temp files)
- Removed all editor-related implementation steps (Write tool, ${EDITOR:-vi} calls)
- Updated examples to show Q&A format instead of editor content
- Updated error handling to use re-prompting instead of re-opening editor
- Updated Implementation Notes to reflect prompt-based approach
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Requirement
Resolves #19
Update the
/make-task-issuecommand to use a prompt-based input approach instead of editor-based input. The current editor-based approach doesn't work properly in some environments and requires complex editor configuration, degrading user experience.Implementation
Updated
.claude/commands/make-task-issue.mdto replace editor-based workflow with prompt-based approach:${EDITOR:-vi}implementation stepsThe new approach follows the proven pattern from
/make-command, providing type-specific prompts for all 9 issue types while maintaining the AI Enhancement functionality.Test
Manual testing recommended:
/make-task-issue feat- verify all prompts appear correctlyHuman Check
🤖 Generated with Claude Code